      * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background: hsl(0, 0%, 100%);
    }

    nav {
      position: sticky;
      top: 10px;
      z-index: 1000;
      max-width: 1520px;
      margin: 30px auto;
      padding: 1.2rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #ffffff;
      border-radius: 50px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
      border: 1px solid #a1a1a1;
    }

    .logo {
      font-size: 1.7rem;
      font-weight: bold;
      color: #2c3e50;
    }

    .nav-center {
      display: flex;
      gap: 2rem;
    }

    .nav-center a {
      position: relative;
      text-decoration: none;
      color: #2c3e50;
      font-weight: 500;
      font-size: 15px;
      padding: 6px 0;
      transition: color 0.3s ease;
    }

    .nav-center a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0%;
      height: 2px;
      background-color: #4a74ff;
      transition: width 0.3s ease;
    }

    .nav-center a:hover::after {
      width: 100%;
    }

    /* ✅ Right Side Rounded Button */
    .nav-right a {
      text-decoration: none;
      background: #4a74ff;
      color: #fff;
      padding: 10px 22px;
      border-radius: 50px;
      font-weight: 500;
      font-size: 15px;
      box-shadow: 0 4px 12px rgba(74, 116, 255, 0.3);
      transition: all 0.3s ease;
    }

    .nav-right a:hover {
      background: #355de0;
      transform: translateY(-1px);
    }
        /* ─── Search Bar ───────────────────────────── */
    .search-box{
        position:relative;
        display:flex;
        align-items:center;
    }
    .search-box input{
      width:200px;
      max-width:60vw;
      padding:9px 40px 9px 16px;
      border:1px solid #bfc9ff;
      border-radius:50px;
      font-size:14px;
      transition:all .3s ease;
    }
    .search-box input::placeholder{
        color:#9aa2d4;
    }
    .search-box input:focus{
      outline:none;border-color:#4a74ff;
      box-shadow:0 0 0 3px rgba(74,116,255,.25);
    }
    /* search icon */
    .search-box::after{
      content:'🔍'; /* simple emoji icon */
      position:absolute;right:14px;pointer-events:none;
      font-size:16px;color:#6d7be9;
    }


    @media (max-width: 768px) {
      nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 25px;
      }

      .nav-center {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
      }

      .nav-right a {
        width: 100%;
        text-align: center;
      }
     .search-box input{width:100%;}

    }
    /* --- Previous link --- */
    .back-link{
  position:absolute;
  top:140px;
  right:220px;
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  font-size:.95rem;
  color:#333;
  text-decoration:none;
  transition:transform .25s ease;
  
}
.back-link:hover{transform:translateX(4px)}
.back-link img{width:35px;height:35px;display:block}


  
    .card {
      background: #ffffff;
      padding: 30px;
      max-width: 1100px;
      margin: auto;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      animation: fadeInCard 1s ease-out;
      margin-top: 120px;
    }
    @keyframes fadeInCard {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    h1 {
      text-align: center;
      color: #1565c0;
      font-size: 2rem;
      margin-bottom: 25px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
      animation: zoomIn 0.6s ease-in-out;
    }
    @keyframes zoomIn {
      from { transform: scale(0.9); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }
    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 25px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      animation: fadeTable 1s ease-in-out;
    }
    @keyframes fadeTable {
      from { opacity: 0.2; }
      to { opacity: 1; }
    }
    thead {
      background: linear-gradient(to right, #1565c0, #42a5f5);
      color: white;
    }
    th {
      padding: 14px;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    td {
      padding: 12px;
      border: 1px solid #e0e0e0;
      background: linear-gradient(120deg, #f9f9f9, #f1f6fc);
      font-size: 14px;
      transition: background 0.3s ease, transform 0.3s ease;
    }
    tr:hover td {
      background: #e3f2fd;
      transform: scale(1.01);
    }
    .sub-item {
      padding-left: 24px;
      font-style: italic;
      font-size: 13px;
    }
    .phase-box span {
      display: inline-block;
      padding: 6px 10px;
      margin-right: 6px;
      border-radius: 8px;
      font-weight: bold;
      font-size: 13px;
      transition: transform 0.3s ease;
    }
    .phase-box span:hover {
      transform: scale(1.1);
    }
    .r { background: #ffcdd2; color: #b71c1c; }
    .y { background: #fff59d; color: #f57f17; }
    .b { background: #bbdefb; color: #0d47a1; }
    .remarks {
      background: #e0f7fa;
      padding: 16px 24px;
      border-left: 6px solid #00897b;
      font-weight: 600;
      font-size: 16px;
      border-radius: 8px;
      margin-top: 20px;
      box-shadow: 0 2px 8px rgba(0, 137, 123, 0.2);
      transition: transform 0.3s ease;
    }
    .remarks:hover {
      transform: scale(1.02);
    }
    .footer {
      font-size: 14px;
      line-height: 1.8;
      color: #333;
      margin-top: 20px;
      padding: 20px;
      background-color: #f5f5f5;
      border-radius: 10px;
      border-left: 4px solid #0d47a1;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    .footer strong {
      color: #0d47a1;
    }
    .info-table {
      margin-bottom: 30px;
      border-radius: 8px;
      overflow: hidden;
    }
    .info-table td {
      padding: 10px;
      border: 1px solid #ccc;
      font-size: 13px;
      background-color: #fafafa;
    }
    .info-table td.label {
      background-color: #e3f2fd;
      font-weight: 600;
      color: #0d47a1;
      width: 180px;
    }
